@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  to {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes leftToRight {
  0% {
    left: 0;
  }
  50% {
    left: calc(100% - 50px);
  }
  to {
    left: 0;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.bold-font {
  font-weight: 700;
}
.bold-font,
.semibold-font {
  font-family: var(--onest-font);
}
.semibold-font {
  font-weight: 500;
}
.medium-font {
  font-family: var(--onest-font);
  font-weight: 300;
}
.grid-with-big-cards {
  --grid-columns: 1;
  --cell-size: minmax(0, 1fr);
  row-gap: 15px;
  column-gap: 15px;
  grid-template-columns: repeat(var(--grid-columns), var(--cell-size));
}
@media (min-width: 550px) {
  .grid-with-big-cards {
    --grid-columns: 2;
  }
}
@media (min-width: 767px) {
  .grid-with-big-cards {
    --grid-columns: 3;
  }
}
@media (min-width: 992px) {
  .grid-with-big-cards {
    --grid-columns: 4;
    row-gap: 30px;
    column-gap: 30px;
  }
}
.rtl {
  direction: rtl;
}
.rtl .icon-flip {
  transform: scaleX(-1);
}
.rtl .game-info-container .image-container {
  margin-left: 15px !important;
  margin-right: 0 !important;
}
.rtl .no-ads-modal-container .image-container {
  margin-left: 10px !important;
  margin-right: 0 !important;
}
.rtl .login-modal-container .popup,
.rtl .no-ads-modal-container .popup,
.rtl .user-modal-container .popup {
  left: 0;
  right: unset;
}
.rtl .no-ads-modal-container .popup {
  transform: translateX(-20%);
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: #000;
}
html::-webkit-scrollbar {
  display: none;
}
body {
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  touch-action: pan-y;
  color: #fff;
  background: #000;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
body.light-mode {
  background-color: #fff;
}
body.with-max-width {
  max-width: 1600px;
}
body.administrative-pages {
  height: 100%;
  max-width: unset;
  min-height: 100vh;
  color: #000;
  background: #fff;
}
.h-screen {
  height: 100vh;
}
.full-height {
  min-height: calc(100vh - 60px - 110px);
}
.grid {
  display: grid;
}
.d-block {
  display: block;
}
.d-none {
  display: none;
}
.flex {
  display: flex;
}
.flex-1 {
  flex: 1 1;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.items-center {
  align-items: center;
}
.items-end {
  align-items: flex-end;
}
.items-start {
  align-items: flex-start;
}
.self-start {
  align-self: flex-start;
}
.justify-around {
  justify-content: space-around;
}
.justify-end {
  justify-content: flex-end;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 15px;
}
.gap-2 {
  gap: 30px;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mt0 {
  margin-top: 0 !important;
}
.mb1 {
  margin-bottom: 15px !important;
}
.mt1 {
  margin-top: 15px;
}
.ml1 {
  margin-left: 15px;
}
.mr1 {
  margin-right: 15px;
}
.mb2 {
  margin-bottom: 30px;
}
.ml2 {
  margin-left: 30px;
}
.mt2 {
  margin-top: 30px;
}
.mr2 {
  margin-right: 30px;
}
.p-side {
  padding: 0 20px;
}
.pl1 {
  padding-left: 15px;
}
.pt1 {
  padding-top: 15px;
}
.pt2 {
  padding-top: 30px;
}
.pb2 {
  padding-bottom: 30px;
}
.pr2 {
  padding-right: 30px !important;
}
.pl2 {
  padding-left: 30px;
}
.m-side {
  margin: 0 30px;
}
.overflow-x-scroll {
  overflow-x: scroll;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.overflow-hidden {
  overflow: hidden;
}
.w-auto {
  width: auto;
}
.w-100 {
  width: 100%;
}
.w-min {
  width: min-content;
}
.w-max {
  width: max-content;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.h-100 {
  height: 100%;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.border-0 {
  border-width: 0;
}
.cursor-pointer {
  cursor: pointer;
}
.no-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scroll::-webkit-scrollbar {
  display: none;
}
.pre-wrap {
  white-space: pre-wrap;
}
.nowrap {
  white-space: nowrap;
}
.text-center {
  text-align: center;
}
.text-end {
  text-align: right;
}
.heading {
  margin-top: 0;
  font-size: 22px;
}
.absolute-center {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.absolute-x-center {
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
.grid-center {
  display: grid;
  place-items: center;
}
.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (min-width: 375px) {
  .p-side {
    padding: 0 30px;
  }
  .scrollable-gutters {
    margin-left: 30px;
    padding-right: 30px;
  }
}
